home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Programmation / jedit / jedit5.1.0install.exe / {app} / macros / Emacs / Emacs_Set_Mark.bsh < prev    next >
Text File  |  2013-07-28  |  292b  |  16 lines

  1. /**
  2.  * Emulate GNU Emacs's "set-mark-command" capability.
  3.  * Does NOT use jEdit markers.
  4.  */
  5. source (dirname (scriptPath) +
  6.         System.getProperty ("file.separator") +
  7.         "EmacsUtil.bsh");
  8.  
  9. void emacsSetMark()
  10. {
  11.     setMark (buffer, textArea.getCaretPosition());
  12. }
  13.  
  14. emacsSetMark();
  15.  
  16.